home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Disc to the Future 2
/
Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin
/
MAC
/
THINKC
/
5
/
P&K_MAND
/
CMANDELB.H
next >
Wrap
Text File
|
1991-12-14
|
715b
|
32 lines
/****
* CMandelbrotDoc.h
*
* Document class for a typical application.
*
****/
#define _H_CMandelbrotDoc /* Include this file only once */
#include <CDocument.h>
#include <CApplication.h>
struct CMandelbrotDoc : CDocument {
/** Construction/Destruction **/
void IMandelbrotDoc(CApplication *aSupervisor, Boolean printable);
void Dispose(void);
void DoCommand(long theCommand);
void UpdateMenus(void);
void NewFile(void);
void OpenFile(SFReply *macSFReply);
void BuildWindow(Handle theData);
/** Filing **/
Boolean DoSave(void);
Boolean DoSaveAs(SFReply *macSFReply);
void DoRevert(void);
};